home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / xxd / xxd.c < prev   
Encoding:
C/C++ Source or Header  |  2001-07-16  |  20.2 KB  |  755 lines

  1. /* xxd: my hexdump facility. jw
  2.  *
  3.  *  2.10.90 changed to word output
  4.  *  3.03.93 new indent style, dumb bug inserted and fixed.
  5.  *          -c option, mls
  6.  * 26.04.94 better option parser, -ps, -l, -s added.
  7.  *  1.07.94 -r badly needs - as input file.  Per default autoskip over
  8.  *             consequtive lines of zeroes, as unix od does.
  9.  *          -a shows them too.
  10.  *          -i dump as c-style #include "file.h"
  11.  *  1.11.95 if "xxd -i" knows the filename, an 'unsigned char filename_bits[]'
  12.  *          array is written in correct c-syntax.
  13.  *          -s improved, now defaults to absolute seek, relative requires a '+'.
  14.  *          -r improved, now -r -s -0x... is supported.
  15.  *             change/suppress leading '\0' bytes.
  16.  *          -l n improved: stops exactly after n bytes.
  17.  *          -r improved, better handling of partial lines with trailing garbage.
  18.  *          -r improved, now -r -p works again!
  19.  *          -r improved, less flushing, much faster now! (that was silly)
  20.  *  3.04.96 Per repeated request of a single person: autoskip defaults to off.
  21.  * 15.05.96 -v added. They want to know the version.
  22.  *          -a fixed, to show last line inf file ends in all zeros.
  23.  *          -u added: Print upper case hex-letters, as preferred by unix bc.
  24.  *          -h added to usage message. Usage message extended.
  25.  *          Now using outfile if specified even in normal mode, aehem.
  26.  *          No longer mixing of ints and longs. May help doze people.
  27.  *          Added binify ioctl for same reason. (Enough Doze stress for 1996!)
  28.  * 16.05.96 -p improved, removed occasional superfluous linefeed.
  29.  * 20.05.96 -l 0 fixed. tried to read anyway.
  30.  * 21.05.96 -i fixed. now honours -u, and prepends __ to numeric filenames.
  31.  *          compile -DWIN32 for NT or W95. George V. Reilly, * -v improved :-)
  32.  *          support --gnuish-longhorn-options
  33.  * 25.05.96 MAC support added: CodeWarrior already uses ``outline'' in Types.h
  34.  *          which is included by MacHeaders (Axel Kielhorn). Renamed to
  35.  *          xxdline().
  36.  *  7.06.96 -i printed 'int' instead of 'char'. *blush*
  37.  *          added Bram's OS2 ifdefs...
  38.  * 18.07.96 gcc -Wall @ SunOS4 is now slient.
  39.  *          Added osver for MSDOS/DJGPP/WIN32.
  40.  * 29.08.96 Added size_t to strncmp() for Amiga.
  41.  * 24.03.97 Windows NT support (Phil Hanna). Clean exit for Amiga WB (Bram)
  42.  * 02.04.97 Added -E option, to have EBCDIC translation instead of ASCII
  43.  *          (antonio.colombo@jrc.it)
  44.  * 22.05.97 added -g (group octets) option (jcook@namerica.kla.com).
  45.  * 23.09.98 nasty -p -r misfeature fixed: slightly wrong output, when -c was
  46.  *          missing or wrong.
  47.  * 26.09.98 Fixed: 'xxd -i infile outfile' did not truncate outfile.
  48.  * 27.10.98 Fixed: -g option parser required blank.
  49.  *          option -b added: 01000101 binary output in normal format.
  50.  * 16.05.00 Added VAXC changes by Stephen P. Wall
  51.  * 16.05.00 Improved MMS file and merege for VMS by Zoltan Arpadffy
  52.  *
  53.  * (c) 1990-1998 by Juergen Weigert (jnweiger@informatik.uni-erlangen.de)
  54.  *
  55.  * Distribute freely and credit me,
  56.  * make money and share with me,
  57.  * lose money and don't ask me.
  58.  */
  59. #include <stdio.h>
  60. #ifdef VAXC
  61. # include <file.h>
  62. #else
  63. # include <fcntl.h>
  64. #endif
  65. #ifdef __TSC__
  66. # define MSDOS
  67. #endif
  68. #if !defined(OS2) && defined(__EMX__)
  69. # define OS2
  70. #endif
  71. #if defined(MSDOS) || defined(WIN32) || defined(OS2)
  72. # include <io.h>    /* for setmode() */
  73. #else
  74. # ifdef UNIX
  75. #  include <unistd.h>
  76. # endif
  77. #endif
  78. #include <stdlib.h>
  79. #include <string.h>    /* for strncmp() */
  80. #include <ctype.h>    /* for isalnum() */
  81. #if __MWERKS__ && !defined(BEBOX)
  82. # include <unix.h>    /* for fdopen() on MAC */
  83. #endif
  84.  
  85. /*  This corrects the problem of missing prototypes for certain functions
  86.  *  in some GNU installations (e.g. SunOS 4.1.x).
  87.  *  Darren Hiebert <darren@hmi.com> (sparc-sun-sunos4.1.3_U1/2.7.2.2)
  88.  */
  89. #if defined(__GNUC__) && defined(__STDC__)
  90. # ifndef __USE_FIXED_PROTOTYPES__
  91. #  define __USE_FIXED_PROTOTYPES__
  92. # endif
  93. #endif
  94.  
  95. #ifndef __USE_FIXED_PROTOTYPES__
  96. /*
  97.  * This is historic and works only if the compiler really has no prototypes:
  98.  *
  99.  * Include prototypes for Sun OS 4.x, when using an ANSI compiler.
  100.  * FILE is defined on OS 4.x, not on 5.x (Solaris).
  101.  * if __SVR4 is defined (some Solaris versions), don't include this.
  102.  */
  103. #if defined(sun) && defined(FILE) && !defined(__SVR4) && defined(__STDC__)
  104. #  define __P(a) a
  105. /* excerpt from my sun_stdlib.h */
  106. extern int fprintf __P((FILE *, char *, ...));
  107. extern int fputs   __P((char *, FILE *));
  108. extern int _flsbuf __P((unsigned char, FILE *));
  109. extern int _filbuf __P((FILE *));
  110. extern int fflush  __P((FILE *));
  111. extern int fclose  __P((FILE *));
  112. extern int fseek   __P((FILE *, long, int));
  113. extern int rewind  __P((FILE *));
  114.  
  115. extern void perror __P((char *));
  116. # endif
  117. #endif
  118.  
  119. extern long int strtol();
  120. extern long int ftell();
  121.  
  122. char version[] = "xxd V1.10 27oct98 by Juergen Weigert";
  123. #ifdef WIN32
  124. char osver[] = " (Win32)";
  125. #else
  126. # ifdef DJGPP
  127. char osver[] = " (dos 32 bit)";
  128. # else
  129. #  ifdef MSDOS
  130. char osver[] = " (dos 16 bit)";
  131. #  else
  132. char osver[] = "";
  133. #  endif
  134. # endif
  135. #endif
  136.  
  137. #if defined(MSDOS) || defined(WIN32) || defined(OS2) || defined(CYGWIN) || defined(CYGWIN32)
  138. # define BIN_READ(yes)  ((yes) ? "rb" : "rt")
  139. # define BIN_WRITE(yes) ((yes) ? "wb" : "wt")
  140. # define BIN_CREAT(yes) ((yes) ? (O_CREAT|O_BINARY) : O_CREAT)
  141. # define BIN_ASSIGN(fp, yes) setmode(fileno(fp), (yes) ? O_BINARY : O_TEXT)
  142. # if defined(CYGWIN) || defined(CYGWIN32)
  143. #  define PATH_SEP '/'
  144. # else
  145. #  define PATH_SEP '\\'
  146. # endif
  147. #else
  148. # ifdef VMS
  149. #  define BIN_READ(dummy)  "r"
  150. #  define BIN_WRITE(dummy) "w"
  151. #  define BIN_CREAT(dummy) O_CREAT
  152. #  define BIN_ASSIGN(fp, dummy) fp
  153. #  define PATH_SEP ']'
  154. #  define FILE_SEP '.'
  155. # else
  156. #  define BIN_READ(dummy)  "r"
  157. #  define BIN_WRITE(dummy) "w"
  158. #  define BIN_CREAT(dummy) O_CREAT
  159. #  define BIN_ASSIGN(fp, dummy) fp
  160. #  define PATH_SEP '/'
  161. # endif
  162. #endif
  163.  
  164. /* open has only to arguments on the Mac */
  165. #if __MWERKS__
  166. # define OPEN(name, mode, umask) open(name, mode)
  167. #else
  168. # define OPEN(name, mode, umask) open(name, mode, umask)
  169. #endif
  170.  
  171. #ifdef AMIGA
  172. # define STRNCMP(s1, s2, l) strncmp(s1, s2, (size_t)l)
  173. #else
  174. # define STRNCMP(s1, s2, l) strncmp(s1, s2, l)
  175. #endif
  176.  
  177. #ifndef __P
  178. # if defined(__STDC__) || defined(MSDOS) || defined(WIN32) || defined(OS2)
  179. #  define __P(a) a
  180. # else
  181. #  define __P(a) ()
  182. # endif
  183. #endif
  184.  
  185. /* Let's collect some prototypes */
  186. /* CodeWarrior is really picky about missing prototypes */
  187. static void exit_with_usage __P((char *));
  188. static int huntype __P((FILE *, FILE *, FILE *, char *, int, int, long));
  189. static void xxdline __P((FILE *, char *, int));
  190.  
  191. #define TRY_SEEK    /* attempt to use lseek, or skip forward by reading */
  192. #define COLS 256    /* change here, if you ever need more columns */
  193. #define LLEN (9 + (5*COLS-1)/2 + 2 + COLS)
  194.  
  195. char hexxa[] = "0123456789abcdef0123456789ABCDEF", *hexx = hexxa;
  196.  
  197. /* the different hextypes known by this program: */
  198. #define HEX_NORMAL 0
  199. #define HEX_POSTSCRIPT 1
  200. #define HEX_CINCLUDE 2
  201. #define HEX_BITS 3        /* not hex a dump, but bits: 01111001 */
  202.  
  203. static void
  204. exit_with_usage(pname)
  205. char *pname;
  206. {
  207.   fprintf(stderr, "Usage:\n       %s [options] [infile [outfile]]\n", pname);
  208.   fprintf(stderr, "    or\n       %s -r [-s [-]offset] [-c cols] [-ps] [infile [outfile]]\n", pname);
  209.   fprintf(stderr, "Options:\n");
  210.   fprintf(stderr, "    -a          toggle autoskip: A single '*' replaces nul-lines. Default off.\n");
  211.   fprintf(stderr, "    -b          binary digit dump (incompatible with -p,-i,-r). Default hex.\n");
  212.   fprintf(stderr, "    -c cols     format <cols> octets per line. Default 16 (-i: 12, -ps: 30).\n");
  213.   fprintf(stderr, "    -E          show characters in EBCDIC. Default ASCII.\n");
  214.   fprintf(stderr, "    -g          number of octets per group in normal output. Default 2.\n");
  215.   fprintf(stderr, "    -h          print this summary.\n");
  216.   fprintf(stderr, "    -i          output in C include file style.\n");
  217.   fprintf(stderr, "    -l len      stop after <len> octets.\n");
  218.   fprintf(stderr, "    -ps         output in postscript plain hexdump style.\n");
  219.   fprintf(stderr, "    -r          reverse operation: convert (or patch) hexdump into binary.\n");
  220.   fprintf(stderr, "    -r -s off   revert with <off> added to file positions found in hexdump.\n");
  221.   fprintf(stderr, "    -s %sseek  start at <seek> bytes abs. %sinfile offset.\n",
  222. #ifdef TRY_SEEK
  223.       "[+][-]", "(or +: rel.) ");
  224. #else
  225.       "", "");
  226. #endif
  227.   fprintf(stderr, "    -u          use upper case hex letters.\n");
  228.   fprintf(stderr, "    -v          show version: \"%s%s\".\n", version, osver);
  229.   exit(1);
  230. }
  231.  
  232. /*
  233.  * Max. cols binary characters are decoded from the input stream per line.
  234.  * Two adjacent garbage characters after evaluated data delimit valid data.
  235.  * Everything up to the next newline is discarded.
  236.  *
  237.  * The name is historic and came from 'undo type opt h'.
  238.  */
  239. static int
  240. huntype(fpi, fpo, fperr, pname, cols, hextype, base_off)
  241. FILE *fpi, *fpo, *fperr;
  242. char *pname;
  243. int cols, hextype;
  244. long base_off;
  245. {
  246.   int c, ign_garb = 1, n1 = -1, n2 = 0, n3, p = cols;
  247.   long have_off = 0, want_off = 0;
  248.  
  249.   rewind(fpi);
  250.  
  251.   while ((c = getc(fpi)) != EOF)
  252.     {
  253.       if (c == '\r')    /* Doze style input file? */
  254.         continue;
  255.  
  256.       n3 = n2;
  257.       n2 = n1;
  258.  
  259.       if (c >= '0' && c <= '9')
  260.         n1 = c - '0';
  261.       else if (c >= 'a' && c <= 'f')
  262.         n1 = c - 'a' + 10;
  263.       else if (c >= 'A' && c <= 'F')
  264.         n1 = c - 'A' + 10;
  265.       else
  266.         {
  267.           n1 = -1;
  268.       if (ign_garb)
  269.         continue;
  270.     }
  271.  
  272.       ign_garb = 0;
  273.  
  274.       if (p >= cols)
  275.     {
  276.       if (!hextype)
  277.         {
  278.           if (n1 < 0)
  279.         {
  280.           p = 0;
  281.           continue;
  282.         }
  283.           want_off = (want_off << 4) | n1;
  284.           continue;
  285.         }
  286.       else
  287.         p = 0;
  288.     }
  289.  
  290.       if (base_off + want_off != have_off)
  291.         {
  292.       fflush(fpo);
  293. #ifdef TRY_SEEK
  294.       c = fseek(fpo, base_off + want_off - have_off, 1);
  295.       if (c >= 0)
  296.         have_off = base_off + want_off;
  297. #endif
  298.       if (base_off + want_off < have_off)
  299.         {
  300.           fprintf(fperr, "%s: sorry, cannot seek backwards.\n", pname);
  301.           return 5;
  302.         }
  303.       for (; have_off < base_off + want_off; have_off++)
  304.         putc(0, fpo);
  305.     }
  306.  
  307.       if (n2 >= 0 && n1 >= 0)
  308.         {
  309.       putc((n2 << 4) | n1, fpo);
  310.       have_off++;
  311.       want_off++;
  312.       n1 = -1;
  313.       if ((++p >= cols) && !hextype)
  314.         {
  315.           /* skip rest of line as garbaga */
  316.           want_off = 0;
  317.           while ((c = getc(fpi)) != '\n' && c != EOF)
  318.             ;
  319.           ign_garb = 1;
  320.         }
  321.     }
  322.       else if (n1 < 0 && n2 < 0 && n3 < 0)
  323.         {
  324.       /* already stumbled into garbage, skip line, wait and see */
  325.       if (!hextype)
  326.         want_off = 0;
  327.       while ((c = getc(fpi)) != '\n' && c != EOF)
  328.         ;
  329.       ign_garb = 1;
  330.     }
  331.     }
  332.   fflush(fpo);
  333. #ifdef TRY_SEEK
  334.   fseek(fpo, 0L, 2);
  335. #endif
  336.   fclose(fpo);
  337.   fclose(fpi);
  338.   return 0;
  339. }
  340.  
  341. /*
  342.  * Print line l. If nz is false, xxdline regards the line a line of
  343.  * zeroes. If there are three or more consecutive lines of zeroes,
  344.  * they are replaced by a single '*' character.
  345.  *
  346.  * If the output ends with more than two lines of zeroes, you
  347.  * should call xxdline again with l being the last line and nz
  348.  * negative. This ensures that the last line is shown even when
  349.  * it is all zeroes.
  350.  *
  351.  * If nz is always positive, lines are never suppressed.
  352.  */
  353. static void
  354. xxdline(fp, l, nz)
  355. FILE *fp;
  356. char *l;
  357. int nz;
  358. {
  359.   static char z[LLEN+1];
  360.   static int zero_seen = 0;
  361.  
  362.   if (!nz && zero_seen == 1)
  363.     strcpy(z, l);
  364.  
  365.   if (nz || !zero_seen++)
  366.     {
  367.       if (nz)
  368.     {
  369.       if (nz < 0)
  370.         zero_seen--;
  371.       if (zero_seen == 2)
  372.         fputs(z, fp);
  373.       if (zero_seen > 2)
  374.         fputs("*\n", fp);
  375.     }
  376.       if (nz >= 0 || zero_seen > 0)
  377.         fputs(l, fp);
  378.       if (nz)
  379.     zero_seen = 0;
  380.     }
  381. }
  382.  
  383. /* This is an EBCDIC to ASCII conversion table */
  384. /* from a proposed BTL standard April 16, 1979 */
  385. static unsigned char etoa64[] =
  386. {
  387.     0040,0240,0241,0242,0243,0244,0245,0246,
  388.     0247,0250,0325,0056,0074,0050,0053,0174,
  389.     0046,0251,0252,0253,0254,0255,0256,0257,
  390.     0260,0261,0041,0044,0052,0051,0073,0176,
  391.     0055,0057,0262,0263,0264,0265,0266,0267,
  392.     0270,0271,0313,0054,0045,0137,0076,0077,
  393.     0272,0273,0274,0275,0276,0277,0300,0301,
  394.     0302,0140,0072,0043,0100,0047,0075,0042,
  395.     0303,0141,0142,0143,0144,0145,0146,0147,
  396.     0150,0151,0304,0305,0306,0307,0310,0311,
  397.     0312,0152,0153,0154,0155,0156,0157,0160,
  398.     0161,0162,0136,0314,0315,0316,0317,0320,
  399.     0321,0345,0163,0164,0165,0166,0167,0170,
  400.     0171,0172,0322,0323,0324,0133,0326,0327,
  401.     0330,0331,0332,0333,0334,0335,0336,0337,
  402.     0340,0341,0342,0343,0344,0135,0346,0347,
  403.     0173,0101,0102,0103,0104,0105,0106,0107,
  404.     0110,0111,0350,0351,0352,0353,0354,0355,
  405.     0175,0112,0113,0114,0115,0116,0117,0120,
  406.     0121,0122,0356,0357,0360,0361,0362,0363,
  407.     0134,0237,0123,0124,0125,0126,0127,0130,
  408.     0131,0132,0364,0365,0366,0367,0370,0371,
  409.     0060,0061,0062,0063,0064,0065,0066,0067,
  410.     0070,0071,0372,0373,0374,0375,0376,0377
  411. };
  412.  
  413. int
  414. main(argc, argv)
  415. int argc;
  416. char *argv[];
  417. {
  418.   FILE *fp, *fpo;
  419.   int c, e, p = 0, relseek = 1, negseek = 0, revert = 0;
  420.   int cols = 0, nonzero = 0, autoskip = 0, hextype = HEX_NORMAL;
  421.   int ebcdic = 0;
  422.   int octspergrp = -1;    /* number of octets grouped in output */
  423.   int grplen;        /* total chars per octet group */
  424.   long length = -1, n = 0, seekoff = 0;
  425.   char l[LLEN+1];
  426.   char *pname, *pp;
  427.  
  428. #ifdef AMIGA
  429.   /* This program doesn't work when started from the Workbench */
  430.   if (argc == 0)
  431.     exit(1);
  432. #endif
  433.  
  434.   pname = argv[0];
  435.   for (pp = pname; *pp; )
  436.     if (*pp++ == PATH_SEP)
  437.       pname = pp;
  438. #ifdef FILE_SEP
  439.   for (pp = pname; *pp; pp++)
  440.     if (*pp == FILE_SEP)
  441.       {
  442.     *pp = '\0';
  443.     break;
  444.       }
  445. #endif
  446.  
  447.   while (argc >= 2)
  448.     {
  449.       pp = argv[1] + (!STRNCMP(argv[1], "--", 2) && argv[1][2]);
  450.            if (!STRNCMP(pp, "-a", 2)) autoskip = 1 - autoskip;
  451.       else if (!STRNCMP(pp, "-b", 2)) hextype = HEX_BITS;
  452.       else if (!STRNCMP(pp, "-u", 2)) hexx = hexxa + 16;
  453.       else if (!STRNCMP(pp, "-p", 2)) hextype = HEX_POSTSCRIPT;
  454.       else if (!STRNCMP(pp, "-i", 2)) hextype = HEX_CINCLUDE;
  455.       else if (!STRNCMP(pp, "-r", 2)) revert++;
  456.       else if (!STRNCMP(pp, "-E", 2)) ebcdic++;
  457.       else if (!STRNCMP(pp, "-v", 2))
  458.         {
  459.       fprintf(stderr, "%s%s\n", version, osver);
  460.       exit(0);
  461.     }
  462.       else if (!STRNCMP(pp, "-c", 2))
  463.     {
  464.       if (pp[2] && STRNCMP("ols", pp + 2, 3))
  465.         cols = (int)strtol(pp + 2, NULL, 0);
  466.       else
  467.         {
  468.           if (!argv[2])
  469.             exit_with_usage(pname);
  470.           cols = (int)strtol(argv[2], NULL, 0);
  471.           argv++;
  472.           argc--;
  473.         }
  474.     }
  475.       else if (!STRNCMP(pp, "-g", 2))
  476.         {
  477.       if (pp[2] && STRNCMP("group", pp + 2, 5))
  478.         octspergrp = (int)strtol(pp + 2, NULL, 0);
  479.       else
  480.         {
  481.           if (!argv[2])
  482.         exit_with_usage(pname);
  483.           octspergrp = (int)strtol(argv[2], NULL, 0);
  484.           argv++;
  485.           argc--;
  486.         }
  487.     }
  488.       else if (!STRNCMP(pp, "-s", 2))
  489.     {
  490.       relseek = 0;
  491.       negseek = 0;
  492.       if (pp[2] && STRNCMP("kip", pp+2, 3) && STRNCMP("eek", pp+2, 3))
  493.         {
  494. #ifdef TRY_SEEK
  495.           if (pp[2] == '+')
  496.             relseek++;
  497.           if (pp[2+relseek] == '-')
  498.             negseek++;
  499. #endif
  500.           seekoff = strtol(pp + 2+relseek+negseek, (char **)NULL, 0);
  501.         }
  502.       else
  503.         {
  504.           if (!argv[2])
  505.             exit_with_usage(pname);
  506. #ifdef TRY_SEEK
  507.           if (argv[2][0] == '+')
  508.             relseek++;
  509.           if (argv[2][relseek] == '-')
  510.             negseek++;
  511. #endif
  512.           seekoff = strtol(argv[2] + relseek+negseek, (char **)NULL, 0);
  513.           argv++;
  514.           argc--;
  515.         }
  516.     }
  517.       else if (!STRNCMP(pp, "-l", 2))
  518.     {
  519.       if (pp[2] && STRNCMP("en", pp + 2, 2))
  520.         length = strtol(pp + 2, (char **)NULL, 0);
  521.       else
  522.         {
  523.           if (!argv[2])
  524.             exit_with_usage(pname);
  525.           length = strtol(argv[2], (char **)NULL, 0);
  526.           argv++;
  527.           argc--;
  528.         }
  529.     }
  530.       else if (!strcmp(pp, "--"))    /* end of options */
  531.         {
  532.       argv++;
  533.       argc--;
  534.       break;
  535.     }
  536.       else if (pp[0] == '-' && pp[1])    /* unknown option */
  537.         exit_with_usage(pname);
  538.       else
  539.         break;                /* not an option */
  540.  
  541.       argv++;                /* advance to next argument */
  542.       argc--;
  543.     }
  544.  
  545.   if (!cols)
  546.     switch (hextype)
  547.       {
  548.       case HEX_POSTSCRIPT:    cols = 30; break;
  549.       case HEX_CINCLUDE:    cols = 12; break;
  550.       case HEX_BITS:        cols = 6; break;
  551.       case HEX_NORMAL:
  552.       default:            cols = 16; break;
  553.       }
  554.  
  555.   if (octspergrp < 0)
  556.     switch (hextype)
  557.       {
  558.       case HEX_BITS:        octspergrp = 1; break;
  559.       case HEX_NORMAL:        octspergrp = 2; break;
  560.       case HEX_POSTSCRIPT:
  561.       case HEX_CINCLUDE:
  562.       default:            octspergrp = 0; break;
  563.       }
  564.  
  565.   if (cols < 1 || (!hextype && (cols > COLS)))
  566.     {
  567.       fprintf(stderr, "%s: invalid number of columns (max. %d).\n", pname, COLS);
  568.       exit(1);
  569.     }
  570.  
  571.   if (octspergrp < 1)
  572.     octspergrp = cols;
  573.  
  574.   if (argc > 3)
  575.     exit_with_usage(pname);
  576.  
  577.   if (argc == 1 || (argv[1][0] == '-' && !argv[1][1]))
  578.     BIN_ASSIGN(fp = stdin, !revert);
  579.   else
  580.     {
  581.       if ((fp = fopen(argv[1], BIN_READ(!revert))) == NULL)
  582.     {
  583.       fprintf(stderr,"%s: ", pname);
  584.       perror(argv[1]);
  585.       return 2;
  586.     }
  587.     }
  588.  
  589.   if (argc < 3 || (argv[2][0] == '-' && !argv[2][1]))
  590.     BIN_ASSIGN(fpo = stdout, revert);
  591.   else
  592.     {
  593.       int fd;
  594.       int mode = revert ? O_WRONLY : (O_TRUNC|O_WRONLY);
  595.  
  596.       if (((fd = OPEN(argv[2], mode | BIN_CREAT(revert), 0666)) < 0) ||
  597.           (fpo = fdopen(fd, BIN_WRITE(revert))) == NULL)
  598.     {
  599.       fprintf(stderr, "%s: ", pname);
  600.       perror(argv[2]);
  601.       return 3;
  602.     }
  603.       rewind(fpo);
  604.     }
  605.  
  606.   if (revert)
  607.     {
  608.       if (hextype && (hextype != HEX_POSTSCRIPT))
  609.         {
  610.           fprintf(stderr, "%s: sorry, cannot revert this type of hexdump\n", pname);
  611.       return -1;
  612.     }
  613.       return huntype(fp, fpo, stderr, pname, cols, hextype,
  614.         negseek ? -seekoff : seekoff);
  615.     }
  616.  
  617.   if (seekoff || negseek || !relseek)
  618.     {
  619. #ifdef TRY_SEEK
  620.       if (relseek)
  621.         e = fseek(fp, negseek ? -seekoff : seekoff, 1);
  622.       else
  623.         e = fseek(fp, negseek ? -seekoff : seekoff, negseek ? 2 : 0);
  624.       if (e < 0 && negseek)
  625.         {
  626.       fprintf(stderr, "%s: sorry cannot seek.\n", pname);
  627.       return 4;
  628.     }
  629.       if (e >= 0)
  630.         seekoff = ftell(fp);
  631.       else
  632. #endif
  633.     {
  634.       long s = seekoff;
  635.  
  636.       while (s--)
  637.         getc(fp);
  638.     }
  639.     }
  640.  
  641.   if (hextype == HEX_CINCLUDE)
  642.     {
  643.       if (fp != stdin)
  644.     {
  645.       fprintf(fpo, "unsigned char %s", isdigit((int)argv[1][0]) ? "__" : "");
  646.       for (e = 0; (c = argv[1][e]) != 0; e++)
  647.         putc(isalnum(c) ? c : '_', fpo);
  648.       fputs("[] = {\n", fpo);
  649.     }
  650.  
  651.       p = 0;
  652.       while ((length < 0 || p < length) && (c = getc(fp)) != EOF)
  653.     {
  654.       fprintf(fpo, (hexx == hexxa) ? "%s0x%02x" : "%s0X%02X",
  655.         (p % cols) ? ", " : ",\n  "+2*!p,  c);
  656.       p++;
  657.     }
  658.  
  659.       if (p)
  660.         fputs("\n};\n"+3*(fp == stdin), fpo);
  661.  
  662.       if (fp != stdin)
  663.     {
  664.       fprintf(fpo, "unsigned int %s", isdigit((int)argv[1][0]) ? "__" : "");
  665.       for (e = 0; (c = argv[1][e]) != 0; e++)
  666.         putc(isalnum(c) ? c : '_', fpo);
  667.       fprintf(fpo, "_len = %d;\n", p);
  668.     }
  669.  
  670.       fclose(fp);
  671.       fclose(fpo);
  672.       return 0;
  673.     }
  674.  
  675.   if (hextype == HEX_POSTSCRIPT)
  676.     {
  677.       p = cols;
  678.       while ((length < 0 || n < length) && (e = getc(fp)) != EOF)
  679.     {
  680.           putchar(hexx[(e >> 4) & 0xf]);
  681.           putchar(hexx[(e     ) & 0xf]);
  682.       n++;
  683.       if (!--p)
  684.         {
  685.           putchar('\n');
  686.           p = cols;
  687.         }
  688.     }
  689.       if (p < cols)
  690.     putchar('\n');
  691.       fclose(fp);
  692.       fclose(fpo);
  693.       return 0;
  694.     }
  695.  
  696.   /* hextype: HEX_NORMAL or HEX_BITS */
  697.  
  698.   if (hextype == HEX_NORMAL)
  699.     grplen = octspergrp + octspergrp + 1;    /* chars per octet group */
  700.   else    /* hextype == HEX_BITS */
  701.     grplen = 8 * octspergrp + 1;
  702.  
  703.   while ((length < 0 || n < length) && (e = getc(fp)) != EOF)
  704.     {
  705.       if (p == 0)
  706.     {
  707.       sprintf(l, "%07lx: ", n + seekoff);
  708.       for (c = 9; c < LLEN; l[c++] = ' ');
  709.     }
  710.       if (hextype == HEX_NORMAL)
  711.     {
  712.       l[c = (9 + (grplen * p) / octspergrp)] = hexx[(e >> 4) & 0xf];
  713.       l[++c]                               = hexx[ e       & 0xf];
  714.     }
  715.       else /* hextype == HEX_BITS */
  716.         {
  717.       int i;
  718.  
  719.       c = (9 + (grplen * p) / octspergrp) - 1;
  720.       for (i = 7; i >= 0; i--)
  721.         l[++c] = (e & (1 << i)) ? '1' : '0';
  722.     }
  723.       if (ebcdic)
  724.         e = (e < 64) ? '.' : etoa64[e-64];
  725.       l[11 + (grplen * cols - 1)/octspergrp + p] =
  726. #ifdef __MVS__
  727.       (e >= 64)
  728. #else
  729.       (e > 31 && e < 127)
  730. #endif
  731.       ? e : '.';
  732.       if (e)
  733.         nonzero++;
  734.       n++;
  735.       if (++p == cols)
  736.     {
  737.       l[c = (11 + (grplen * cols - 1)/octspergrp + p)] = '\n'; l[++c] = '\0';
  738.       xxdline(fpo, l, autoskip ? nonzero : 1);
  739.       nonzero = 0;
  740.       p = 0;
  741.     }
  742.     }
  743.   if (p)
  744.     {
  745.       l[c = (11 + (grplen * cols - 1)/octspergrp + p)] = '\n'; l[++c] = '\0';
  746.       xxdline(fpo, l, 1);
  747.     }
  748.   else if (autoskip)
  749.     xxdline(fpo, l, -1);    /* last chance to flush out supressed lines */
  750.  
  751.   fclose(fp);
  752.   fclose(fpo);
  753.   return 0;
  754. }
  755.